how to download file from python

43

how to download file from python -

import wget

url = "https://www.python.org/static/img/[email protected]"

wget.download(url, 'c:/users/LikeGeeks/downloads/pythonLogo.png')

Comments

Submit
0 Comments